home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et3_0-a1.lha / et3 / src / PrintPort.h < prev    next >
C/C++ Source or Header  |  1992-04-27  |  428b  |  26 lines

  1. #ifndef PrintPort_First
  2. #ifdef __GNUG__
  3. //pragma once
  4. #pragma interface
  5. #endif
  6. #define PrintPort_First
  7.  
  8. #include "Port.h"
  9.  
  10. class PrintPort: public Port {    
  11. protected:
  12.     Rectangle bbox, pagebbox;
  13.     
  14.     void Merge(Rectangle *r);
  15.  
  16. public:
  17.     MetaDef(PrintPort);
  18.     PrintPort(char *name= 0);
  19.     void OpenPage(int pn);
  20.     void ClosePage();
  21.     virtual void DevOpenPage(int pn);
  22.     virtual void DevClosePage();
  23. };
  24.  
  25. #endif
  26.